home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Extra / ARexx / README.TEXT < prev    next >
Text File  |  1997-01-09  |  3KB  |  79 lines

  1.  
  2.   README.TEXT - ARexx Support Documentation
  3.  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4.  
  5. The scripts in this directory are simply scripts that will make it easier
  6. to handle ranges of indexed files. Each script perform a task that can be
  7. invoked from Shell/CLI or from programs such as DOpus4 or DOpus5.
  8.  
  9. None of the scripts uses Image Engineer or any other external software, but
  10. they do use basic DOS commands such as delete, rename, etc.
  11.  
  12. The new version of the button bank for DOpus5 already have support for the
  13. scripts in this directory. Also, complete settings exists, ready to use, for
  14. DOpus4. Read the ReadMe files for those programs to see how to setup
  15. configurations.
  16.  
  17.  
  18.   Included scripts
  19.  ~~~~~~~~~~~~~~~~~~
  20.  
  21. "REXX:IndexChange.rexx"
  22.  
  23. Usage: <add/sub_value> <First_file_in_range> <Last_file_in_range>
  24.  
  25. This script adds or subtracts a given value from each index number for all
  26. files within the set range. If the <add/sub_value> option is positive the
  27. script will add, if it is negative it will subtract.
  28.  
  29. Example: RX IndexChange 25 Output.0035 Output.0075
  30.  Result: 41 files named Output.0060 to Output.0100
  31.  
  32.  
  33.  
  34. "REXX:IndexClone.rexx"
  35.  
  36. Usage: <New_basename> <First_file_in_range> <Last_file_in_range>
  37.  
  38. This script makes copies (clones) of all files within the set range. The new
  39. files will have the same index number as the original file but the base name
  40. of the file will be set to the name specified in the <New_basename> option.
  41.  
  42. Example: RX IndexClone CloneImage Original.0003 Original.0021
  43.  Result: 19 files named CloneImage.0003 to Original.0021 and, of course,
  44.          the files Original.0003 to Original.0021.
  45.  
  46.  
  47. "REXX:IndexMultiply.rexx"
  48.  
  49. Usage: <Number_of_copies> <Indexed_file_name>
  50.  
  51. This script makes copies (clones) of one single indexed file. The new
  52. files will have the same base name as the original indexed file but the
  53. index numbers will change. The <Number_of_copies> options sets the number
  54. of copies of the original file. A positive number will make the new files
  55. indexed from the original file and upwards, while a negative value will make
  56. them indexed downwards.
  57.  
  58. Example: RX IndexMultiply -10 Image.0040
  59.  Result: 11 files named Image.0030 to Image.0040
  60.  
  61.  
  62.  
  63. "REXX:IndexReverse.rexx"
  64.  
  65. Usage: <First_file_in_range> <Last_file_in_range>
  66.  
  67. This script reverses the order of all file within the selected range. The
  68. first file is renamed so that it will be the last and vice versa.
  69.  
  70. Example: RX IndexReverse Nice_Pic.0005 Nice_Pic.0015
  71.  Result: 11 files named Nice_Pic.0005 Nice_Pic.0015
  72.  
  73.  
  74. [--------------------------------------------------------------------------]
  75.  
  76.   All scripts Copyright © 1997
  77.   by Patrik M Nydensten, <ie96_pny@isk.kth.se>
  78.   9/1 1997 Stockholm/Sweden
  79.